home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / MCC_NList / Developer / C / Examples / smakefile < prev   
Encoding:
Makefile  |  1998-05-27  |  461 b   |  24 lines

  1. #
  2. #       smakefile for SMake
  3. #
  4.  
  5. CC = SC
  6.  
  7. LDFLAGS = Batch NoIcons
  8. CFLAGS      = StringMerge NoStackCheck NoStackExt UnsignedChars \
  9.         CommentNest ErrorRexx NoMultipleIncludes \
  10.         StructureEquivalence NoIcons GenProtoParameters \
  11.         Ignore=147 MultipleCharacterConstants STREQ NoOptimize \
  12.         MemorySize=Huge IDLen=64 PARAMETERS=BOTH SAVEDS
  13.  
  14.  
  15. all: NList-Demo
  16.  
  17.  
  18. NList-Demo: NList-Demo.o
  19.     $(CC) $(LDFLAGS) $*.o LINK to $@
  20.  
  21. .o: .c
  22.     $(CC) $(CFLAGS) $*.c OBJNAME $*.o
  23.  
  24.